home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / NEWSOFT / AUGUST / POV302 / pov302 / ini / povini < prev    next >
Text File  |  1997-03-24  |  2KB  |  64 lines

  1. ;                     PERSISTENCE OF VISION RAY TRACER
  2. ;
  3. ;                           POV-Ray VERSION 3.0
  4. ;
  5. ;                         SAMPLE POVRAY.INI FILE
  6. ;
  7. ;  This file contains options which control how POV-Ray does its job.
  8. ;  The file should be placed in the same directory as POVRAY.EXE and
  9. ;  it will automaticaly read when POVRAY is run.
  10. ;
  11. ;  The general form of the options is "Variable=value".  Everything 
  12. ;  between the equals sign and the end of the line is considered part 
  13. ;  of the value.  The spacing and layout is free-form but only one option 
  14. ;  per line is allowed.  Variables and values are not case-sensitive.  
  15. ;
  16. ;  Note: characters after a semi-colon are treated as a comment
  17. ;
  18. ;  Traditional POV-Ray switches beginning with + or - are also allowed
  19. ;  and they may be given with more than one switch per line.  
  20. ;
  21. ;  These options have been put in this file because they will help
  22. ;  you get up and running quickly.  This file assumes you have installed
  23. ;  the program in the /usr/local/lib directory.  If you have installed
  24. ;  the program on a directory you must edit the Library_Path lines below.
  25. ;  See the general and Linux specific documentation for full instructions
  26. ;  on how to use INI options.
  27. ;
  28. ;  Add your own options at the bottom and/or edit these to suit.
  29. ;
  30. Verbose = on
  31. ;
  32. ; Width of image in pixels.  Accepts integer values.
  33. ;
  34. Width = 640
  35. ;
  36. ;
  37. ; Height of image in pixels.  Accepts integer values.
  38. ;
  39. Height = 480
  40. ;
  41. ;
  42. ; Turns pause when done feature off/on.  Accepts boolean values.
  43. ;
  44. Pause_when_Done = on
  45. ;
  46. ;
  47. ; Sets minimum number of objects before auto bounding kicks in.
  48. ;
  49. Bounding_Threshold = 3
  50. ;
  51. ;
  52. ; Test for user abort with any keypress every 100 pixels.
  53. ;
  54. Test_Abort=On
  55. Test_Abort_Count=100
  56. ;
  57. ; Specify path to search for any files not found in current
  58. ; directory.  Up to 25 such paths may be specified.
  59. Library_Path=<Povray3$Dir>
  60. Library_Path=<Povray3$Dir>.include
  61. Library_Path=<Povray3$Dir>.pov3demo.objects
  62.  
  63.  
  64.